home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / System / NewIconsV4 / Developers / Source / DefIconsPrefs / deficons.i < prev    next >
Text File  |  1999-03-11  |  1KB  |  25 lines

  1. ACT_MATCH    EQU    1    * arg1/2 = offset arg3 = length str = string
  2. ACT_SEARCH    EQU    2    * arg2 = length str = string
  3. ACT_SEARCHSKIPSPACES    EQU    3    * arg2 = length str = string
  4.                     * if length < 0, do a case unsensitive match */
  5.  
  6. ACT_FILESIZE    EQU    4    * arg2 = file size
  7. ACT_NAMEPATTERN    EQU    5    * str = filename pattern
  8. ACT_PROTECTION    EQU    6    * arg1 = mask arg2 = protbits&mask
  9. ACT_OR    EQU    7    * an alternative description follows
  10. ACT_ISASCII    EQU    8    * this is used only by AsciiType
  11. ACT_MACROCLASS    EQU    20    * this must be the ONLY ACT_xxx of the node.
  12.                         * (apart from ACT_END)
  13.                         * following descriptions are son of this one, but
  14.                         * this one will never be considered valid, i.e.
  15.                         * if none of the sons matches the file, we will
  16.                         * proceed with the following description. The parent
  17.                         * will be used only for icon picking purposes (e.g.
  18.                         * a class "picture" may contain "gif", "jpeg" and so
  19.                         * on, and if def_gif is missing def_picture will be used.
  20. ACT_END    EQU    0
  21.  
  22. TYPE_DOWN_LEVEL    EQU    1    * following description is son of previous one
  23. TYPE_UP_LEVEL    EQU    2    * following description is brother of parent of previous one
  24. TYPE_END    EQU    0    * end of list
  25.